From bd4acfe467cf84ce5d674e2a15bba7feb2633026 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 25 May 2008 20:18:16 +0000 Subject: [PATCH] =?utf8?q?Bug=20532497=20=E2=80=93=20Configure=20problem?= =?utf8?q?=20when=20cross-compiling?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 2008-05-25 Matthias Clasen Bug 532497 – Configure problem when cross-compiling * configure.in: Use AC_CHECK_TOOLS to find C++ compiler, pointed out by Marko Lindqvist. svn path=/trunk/; revision=20156 --- ChangeLog | 7 +++++++ configure.in | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3eae2e5698..121b0f0503 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-05-25 Matthias Clasen + + Bug 532497 – Configure problem when cross-compiling + + * configure.in: Use AC_CHECK_TOOLS to find C++ compiler, + pointed out by Marko Lindqvist. + 2008-05-25 Richard Hult * gtk/gtkquartz.c: (_gtk_quartz_set_selection_data_for_pasteboard): diff --git a/configure.in b/configure.in index 2be7b3803c..02064d62ee 100644 --- a/configure.in +++ b/configure.in @@ -147,7 +147,7 @@ dnl dnl Check for a working C++ compiler, but do not bail out, if none is found. dnl We use this for an automated test for C++ header correctness. dnl -AC_CHECK_PROGS(CXX, [$CCC c++ g++ gcc CC cxx cc++ cl], gcc) +AC_CHECK_TOOLS(CXX, [$CCC c++ g++ gcc CC cxx cc++ cl], gcc) AC_LANG_SAVE AC_LANG_CPLUSPLUS -- 2.30.2